- import YearsExplorer from "@/components/explorer/levels/YearsExplorer";
- /**
- * /:branch
- *
- * Explorer entry for a branch: lists years.
- */
- export default async function BranchPage({ params }) {
- const { branch } = await params;
- return <YearsExplorer branch={branch} />;
- }
|